Socket
Socket
Sign inDemoInstall

p-try

Package Overview
Dependencies
0
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    p-try

`Promise#try()` ponyfill - Starts a promise chain


Version published
Weekly downloads
45M
increased by1.37%
Maintainers
1
Install size
3.58 kB
Created
Weekly downloads
 

Package description

What is p-try?

The p-try npm package is used to start a promise chain and execute a function asynchronously. It is a simple utility that allows you to attempt to execute a function and return a Promise that resolves with the function's result or rejects if the function throws an error.

What are p-try's main functionalities?

Asynchronous function execution

This feature allows you to execute a function asynchronously and handle the result or error using promise chaining.

const pTry = require('p-try');

pTry(() => {
  return 'result';
}).then(result => {
  console.log(result); // 'result'
}).catch(error => {
  console.error(error);
});

Other packages similar to p-try

Readme

Source

p-try Build Status

Promise#try() ponyfill - Starts a promise chain

How is it useful?

Install

$ npm install --save p-try

Usage

const pTry = require('p-try');

pTry(() => {
	return synchronousFunctionThatMightThrow();
}).then(value => {
	console.log(value);
}).catch(error => {
	console.error(error);
});
  • p-finally - Promise#finally() ponyfill - Invoked when the promise is settled regardless of outcome
  • More…

License

MIT © Sindre Sorhus

Keywords

FAQs

Last updated on 21 Oct 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc